# GNU gcc compiler
CFLAGS = -O3 -Wall -I../../../include 
CC = g++

sim:
	${CC} ${CFLAGS} circuit.cpp

clean:
	rm -f a.out data
